Order-agnostic Binary Search (easy)

Problem Statement #

Given a sorted array of numbers, find if a given number ā€˜keyā€™ is present in the array. Though we know that the array is sorted, we donā€™t know if itā€™s sorted in ascending or descending order. You should assume that the array can have duplicates.

Write a function to return the index of the ā€˜keyā€™ if it is present in the array, otherwise return -1.

Example 1:

Input: [4, 6, 10], key = 10
Output: 2

Example 2:

Input: [1, 2, 3, 4, 5, 6, 7], key = 5
Output: 4

Example 3:

Input: [10, 6, 4], key = 10
Output: 0

Example 4:

Input: [10, 6, 4], key = 4
Output: 2

Try it yourself #

Try solving this question here:

Output

2.219s

-1 -1 -1 -1

Solution #

To make things simple, letā€™s first solve this problem assuming that the input array is sorted in ascending order. Here are the set of steps for Binary Search:

  1. Letā€™s assume start is pointing to the first index and end is pointing to the last index of the input array (letā€™s call it arr). This means:
    int start = 0;
    int end = arr.length - 1;
  1. First, we will find the middle of start and end. An easy way to find the middle would be: middle=(start+end)/2middle=(start+end)/2. For Java and C++, this equation will work for most cases, but when start or end is large, this equation will give us the wrong result due to integer overflow. Imagine that start is equal to the maximum range of an integer (e.g. for Java: int start = Integer.MAX_VALUE). Now adding anything to start will result in an integer overflow. Since we need to add both the numbers first to evaluate our equation, an overflow might occur. The safest way to find the middle of two numbers without getting an overflow is as follows:
     middle  = start + (end-start)/2

The above discussion is not relevant for Python, as we donā€™t have the integer overflow problem in pure Python.

  1. Next, we will see if the ā€˜keyā€™ is equal to the number at index middle. If it is equal we return middle as the required index.
  2. If ā€˜keyā€™ is not equal to number at index middle, we have to check two things:
    • If key < arr[middle], then we can conclude that the key will be smaller than all the numbers after index middle as the array is sorted in the ascending order. Hence, we can reduce our search to end = mid - 1.
    • If key > arr[middle], then we can conclude that the key will be greater than all numbers before index middle as the array is sorted in the ascending order. Hence, we can reduce our search to start = mid + 1.
  3. We will repeat steps 2-4 with new ranges of start to end. If at any time start becomes greater than end, this means that we canā€™t find the ā€˜keyā€™ in the input array and we must return ā€˜-1ā€™.

Here is the visual representation of Binary Search for the Example-2:

Created with Fabric.js 1.6.0-rc.1 1 2 3 4 5 6 7 Search 'key' = '5' As key > arr[middle], therefore start = middle + 1 1 2 3 4 5 6 7 As key < arr[middle], therefore end = middle - 1 1 2 3 4 5 6 7 As key == arr[middle], return middle as the required index

If the array is sorted in the descending order, we have to update the step 4 above as:

  • If key > arr[middle], then we can conclude that the key will be greater than all numbers after index middle as the array is sorted in the descending order. Hence, we can reduce our search to end = mid - 1.
  • If key < arr[middle], then we can conclude that the key will be smaller than all the numbers before index middle as the array is sorted in the descending order. Hence, we can reduce our search to start = mid + 1.

Finally, how can we figure out the sort order of the input array? We can compare the numbers pointed out by start and end index to find the sort order. If arr[start] < arr[end], it means that the numbers are sorted in ascending order otherwise they are sorted in the descending order.

Code #

Here is what our algorithm will look like:

Output

3.122s

2 4 0 2

Time complexity #

Since, we are reducing the search range by half at every step, this means that the time complexity of our algorithm will be O(logN)O(logN) where ā€˜Nā€™ is the total elements in the given array.

Space complexity #

The algorithm runs in constant space O(1)O(1).

Mark as Completed
ā†    Back
Introduction
Next    ā†’
Ceiling of a Number (medium)